home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #2 / Ham Radio 2000 - Volume 2.iso / HAMV2 / PACKET / TFLINK10 / TFLNKSRC / MAKEFILE < prev    next >
Text File  |  1996-04-14  |  437b  |  19 lines

  1.  
  2. #
  3. # Makefile - makes tflink.exe from source
  4. #
  5. # All objects are dependent on the tflink.h file.  TCC -mc option
  6. # is required to create an effective TSR.  This makefile also
  7. # generates a tflink.map file so that the amount of memory required
  8. # for a TSR can be gauged.
  9. #
  10. OBJECTS = tflink.obj ibmcom.obj tfpcx.obj getopts.obj
  11.  
  12. tflink.exe:    $(OBJECTS)
  13.     tcc -mc -M $(OBJECTS)
  14.  
  15. $(OBJECTS):    tflink.h
  16.  
  17. .c.obj:
  18.     tcc -mc -c $<
  19.